$(document).ready(function(){
 
 $('span#comment-post').click(function() {
 
  // validate the comment form when it is submitted
	//$("form#contactform").validate();
	
   $('form#contactform').attr('action','/formmail.php');
   
   $('form#contactform').submit();
 });
 

});
  
