$(document).ready(function(){

<!-- contact -->

$("#markform").submit(function(){

var str = $(this).serialize();
   $.ajax({
   type: "POST",
   url: "http://www.eighthavenuemarketing.com.au/php/marketingtForm.php",
   data: str,
   success: function(msg){
$("#note").ajaxComplete(function(event, request, settings){
if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
{
$('.the-form').hide();
$('#oinfo').hide();
$('#note').hide();
$('#thanks').show();
}
else
{
$('#note').show();
result = msg;
}
$(this).html(result);
});
}
});
return false;
});
<!-- end contact -->
});

$(document).ready(function(){
						   
$('#reset').click(function(){
	$('#note').hide();	
});
});
