$(document).ready(function(){

<!-- contact -->

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

var str = $(this).serialize();
   $.ajax({
   type: "POST",
   url: "http://www.lkc-designs.com/php/contactForm.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
{
$('#con').hide();
$('#thanks').show();
}
else
{
$('#note').show();
result = msg;
}
$(this).html(result);
});
}
});
return false;
});
<!-- end contact -->
});

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