$(document).ready(function() {

	//$("#otherProductP").hide();
	$("#postResult").hide();
	
	/*
	$("#product").change(function () {
    	if($("option:selected",$(this)).text() == 'Other (please specify)'){
    		$("#otherProductP").show();
    		$("#product").hide();
    	}	    	
    });
	*/
	
	//add onsubmit event to form
	$("#formRequestFreeTrial").submit(function() {
		
		if (validateForm($(this))){
					
			$("#submitButton").hide();
			$("#validationMessage").removeClass().text("Sending...");
		
			$.post("emailRequestFreeTrial.php", $(this).serialize(), function(data){  	

			   	//if response was success, hide the form
    		   	//if(data.length > 0 ){
    		   		
    		   		$("#formRequestFreeTrial").hide();
    		   		$("#postResult").show();
    		   		//$("#postResult").html(data);
    		   	//}
    	   	
    		   	return false;
			});
		}
		
		return false;		
		
	});
	

});