function ellisCheckForm(form) {
	if(form.program.value.indexOf("A") != 0 && form.program.value.indexOf("B") != 0 && form.program.value.indexOf("C") != 0 && form.educationLevel && 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 Ellis College.");
		return (false);
	}
	if (form.custom1 && form.custom1.value == '') {
        alert("Please specify when you plan to start.");
        return (false);
    }
	if (form.yearswork && !form.yearswork[0].checked && !form.yearswork[1].checked) {
		alert("Please specify whether you have 3 years of work experience.");
		return (false);
    }
    return true;
}

function ellisProgramChange(form)
{
}
