function libertyCheckForm(form) {
	if (form.state && (form.state.value == "MO"||form.state.value == "KS"||form.state.value == "IL"||form.state.value == "CA"||form.state.value == "AR")
		&& form.program && (form.program.value == "COMF-MA-D"||form.program.value == "COUN-MA-D"||form.program.value == "COEX-MA-D")) {
       alert("Unfortunately, your state does not accept either external schools or online degrees for licensure.  Please check with your state licensure board for further clarification.  If you are not interested in pursuing licensure, please inquire about Liberty's Human Services degree.");
       return (false);
    }
	if (form.custom1 && form.custom1.value == "") {
		alert("Please specify best time to contact you.");
		return (false);
	}
	if (form.custom2 && form.custom2.value == "") {
		alert("Please specify how soon you would like to begin.");
		return (false);
	}
	if (form.educationLevel && form.program) {
        programText = form.program.options[form.program.selectedIndex].text;
		if(programText.indexOf("A")!=0&&programText.indexOf("B")!=0) {
			if(form.educationLevel.value != "Bachelors" && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
				alert("Based on the information you provided, you do not currently meet the application requirements for Liberty University.");
				return (false);
			}
		}
    }
    return true;
}

function libertyProgramChange(form)
{
}
