function validateForm() {
if( document.theForm.brochure_iam.value == "" ) {						
document.theForm.brochure_iam.focus();
alert("Please Select Who You Are.");
return false;				
}
if( document.theForm.p_t_name.value == "" ) {						
document.theForm.p_t_name.focus();
alert("Parent/Teacher's Name is Required.");
return false;				
}
if( document.theForm.address1.value == "" ) {						
document.theForm.address1.focus();
alert("Address is Required.");
return false;				
}if( document.theForm.city.value == "" ) {						
document.theForm.city.focus();
alert("City is Required");
return false;				
}if( document.theForm.state.value == "" ) {						
document.theForm.state.focus();
alert("State id Required.");
return false;				
}if( document.theForm.zip.value == "" ) {						
document.theForm.zip.focus();
alert("Postal Code is Required.");
return false;				
}if( document.theForm.email.value == "" ) {						
document.theForm.email.focus();
alert("Email is Required.");
return false;				
}if( document.theForm.hear.value == "" ) {						
document.theForm.hear.focus();
alert("Referral is Required.");
return false;				
}
return true;
} 
