// JavaScript Document
   <!--

   	function checkSelection() {

			
			if (document.goform.ApplicantFName1.value == "") {

				alert("Please input Applicant's first name before clicking submit.");

				return false;
			}
			if (document.goform.ApplicantLName1.value == "") {

				alert("Please input Applicant's last name before clicking submit.");

				return false;
			}
			if (document.goform.school1.value == "") {

				alert("Please input your current school before clicking submit.");

				return false;

			}
			
			if (document.goform.DOB1.value == "") {

				alert("Please input your child's Date of Birth before clicking submit.");

				return false;

			}
			
			if (document.goform.currGrade1.value == "") {

				alert("Please input your child's current grade before clicking submit.");

				return false;

			}
			if (document.goform.appGrade1.value == "") {

				alert("Please input the grade you are applying for before clicking submit.");

				return false;

			}
			if (document.goform.appYear1.value == "") {

				alert("Please input your proposed entrance year before clicking submit.");

				return false;

			}
			if (document.goform.parFName.value == "") {

				alert("Please input Parent/Guardian first name before clicking submit.");

				return false;

			}
			if (document.goform.parLName.value == "") {

				alert("Please input Parent/Guardian last name before clicking submit.");

				return false;

			}
			if (document.goform.address.value == "") {

				alert("Please input your Address before clicking submit.");

				return false;

			}
			if (document.goform.city.value == "") {

				alert("Please input your City before clicking submit.");

				return false;

			}
			if (document.goform.state.value == "") {

				alert("Please input your State before clicking submit.");

				return false;

			}
			if (document.goform.zip.value == "") {

				alert("Please input your Zip Code before clicking submit.");

				return false;

			}
			if (document.goform.phone.value == "") {

				alert("Please input your Phone number before clicking submit.");

				return false;

			}
			if (document.goform.hear.value == "") {

				alert("Please tell us how you heard about Highland School before clicking submit.");

				return false;

			}
			if (document.goform.email.value == "") {

				alert("Please input your email address before clicking submit.");

				return false;

			}

			return true;

		}

   //-->
  
  <!--

   	function checkSelection2() {

			if (document.goform.Fname.value == "") {

				alert("You must input your first name before clicking submit.");

				return false;

			}
			if (document.goform.Lname.value == "") {

				alert("You must input your last name before clicking submit.");

				return false;
			}
			
			if (document.goform.year.value == "") {

				alert("You must input your graduation year before clicking submit.");

				return false;

			}
			
			
			if (document.goform.email.value == "") {

				alert("You must input your email address before clicking submit.");

				return false;

			}

			return true;

		}

   //-->
    <!--

   	function checkSelection3() {

			if (document.goform.firstName.value == "") {

				alert("You must input your first name before clicking submit.");

				return false;

			}
			if (document.goform.lastName.value == "") {

				alert("You must input your last name before clicking submit.");

				return false;
			}
			
			if (document.goform.email.value == "") {

				alert("You must input your email address before clicking submit.");

				return false;

			}

			return true;

		}

   //-->
   <!--

   	function checkSelection4() {

			if (document.goform.StudName.value == "") {

				alert("You must input your child's name before clicking submit.");

				return false;

			}
			if (document.goform.ParName.value == "") {

				alert("You must input the parent/guardian name before clicking submit.");

				return false;
			}
			
			if (document.goform.email.value == "") {

				alert("You must input your email address before clicking submit.");

				return false;

			}

			return true;

		}

   //-->
    <!--

   	function checkSelection5() {

			if (document.goform.StudentName.value == "") {

				alert("You must input your name before clicking submit.");

				return false;

			}
			if (document.goform.Address1.value == "") {

				alert("You must input your street address before clicking submit.");

				return false;
			}
			
			if (document.goform.Address2.value == "") {

				alert("You must input your city, state, zip before clicking submit.");

				return false;

			}
			if (document.goform.SSN.value == "") {

				alert("You must input your Social Security # before clicking submit.");

				return false;

			}
			if (document.goform.DOB.value == "") {

				alert("You must input your date of birth before clicking submit.");

				return false;

			}
			if (document.goform.Phone.value == "") {

				alert("You must input your phone number before clicking submit.");

				return false;

			}
			if (document.goform.email.value == "") {

				alert("You must input your email address before clicking submit.");

				return false;

			}
<!-- OMIT THESE	SELECTIONS FOR NOW -->

<!--			if (document.goform.ACT1Date.value == "") {
<!--				alert("You must input date of your ACT test before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.ACT1English.value == "") {
<!--				alert("You must input ACT English score before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.ACT1Science.value == "") {
<!--				alert("You must input ACT Science score before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.ACT1Math.value == "") {
<!--				alert("You must input ACT Math score before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.ACT1Combined.value == "") {
<!--				alert("You must input ACT Combined score before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.ACT1Reading.value == "") {
<!--				alert("You must input ACT Reading score before clicking submit.");
<!--				return false;
<!--			}
<!--		if (document.goform.SAT1Date.value == "") {
<!--				alert("You must input date of your SAT test before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.SAT1Verbal.value == "") {
<!--			alert("You must input your SAT Verbal score before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.SAT1Math.value == "") {
<!--				alert("You must input your SAT Math score before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.SAT1Combined.value == "") {
<!--				alert("You must input your SAT Combined score before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.SATII1Date.value == "") {
<!--				alert("You must input date of your SAT II test before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.SATII1Subject.value == "") {
<!--				alert("You must input your SAT II Subject before clicking submit.");
<!--				return false;
<!--			}
<!--			if (document.goform.SATII1Combined.value == "") {
<!--				alert("You must input your SAT II Combined score before clicking submit.");
<!--				return false;
<!--			}

			return true;
		}

   //-->