validate help

validate help

hi

im using the validate plugin with the meta data plugin

i call it like this


   
  1.   jQuery(document).ready(
    function(){
    jQuery("#com-createForm").validate({ meta: "rules" } );
    });






and then in the html i have for example

    
  1.  <select name="offertype" class="drop {rules:{required:true, messages:{required:'Please select the Type '}}}" id="offertype">
    <option value="">--Select Type--</option>
    <option value=1>Pumped</option>
    <option value=2>Gravity</option>
    </select>



however my problem is that all the error messages appear just after the fields and i would like to put them at the top of the page ?



tnx

sean




PS : NICE FORUM!