function rockiesCheckForm(form) {
	if (form.educationLevel && form.educationLevel.value != "Bachelors" && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
        alert("Your Student Information Form indicates that you do not meet the admissions requirements for acceptance into University of the Rockies.");
        return (false);
    }
	if (form.state && (form.state.value == "AL"||form.state.value == "AR"||form.state.value == "TN"||form.state.value == "PA")) {
		alert("University of the Rockies does not currently accept students from your state.");
		return (false);
	}
	if (form.program && (form.program.value.indexOf("D")==0||form.program.value.indexOf("P")==0) && form.educationLevel && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
        alert("You must have Master's Degree or above to qualify for this program.");
        return (false);
    }
	if (form.custom1 && form.custom1.value == "") {
		alert("Please specify age.");
		return (false);
	}
	if (form.contactRequest && !form.contactRequest.checked) {
        alert("To request more information, you must acknowledge that University of the Rockies will contact you via email and telephone.");
        return (false);
    }
    return true;
}

function rockiesProgramChange(form)
{
}
