function checkContactUs()
{
if(document.getElementById("LastName").value.length > 0) {
alert("This form is not valid.")
return false;
}
}
