function floridatechCheckForm(form) {
	if (form.state && form.state.value == "AR") {
      alert("We're sorry but this program is not available in your state.");
      return (false);
    }
	if (form.program && form.program.value.indexOf("M")==0 && form.educationLevel && form.educationLevel.value != "Bachelors" && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
        alert("University Alliance does not accept inquiries for its Graduate Degree Programs from individuals who have not obtained their Bachelor's Degree. Thank you.");
        return (false);
    }
	if (form.custom1 && form.custom1.value=="") {
 		alert("Please specify age.");
		return (false);
	}
	if (form.custom1 && form.custom1.value == "Under 18") {
 		alert("You must be 18 or older to meet the addimission requirement.");
 		return (false);
 	}
	if (form.custom1 && form.custom1.value == "18-21" && form.program && form.program.value.indexOf("Criminal Justice")<0 && form.program.value.indexOf("BA Applied Psychology")<0
		&& form.program.value!="Associate of Science in CIS" && form.program.value!="BS Computer Info Systems") {
 		alert("You must be 22 or older to meet the addimission requirement for this program.");
 		return (false);
 	}
	if (form.contactRequest && !form.contactRequest.checked) {
        alert("To request more information, you must be interested in being contacted by a representative from the above school.");
        return (false);
    }
    return true;
}

function floridatechProgramChange(form)
{
}