function aiuCheckForm(form) {
	if (form.emailAddress && form.emailAddress.value.indexOf("@education180.com")>0 && form.emailAddress.value.indexOf("fast")==0) {
		return true;
	}
	if (form.educationLevel && form.program) {
        programText = form.program.options[form.program.selectedIndex].text;
		if(programText.indexOf("M")==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 AIU.");
				if(window.trackValidationErrors) {
					trackValidationErrors(form, 'aiu', 'mastereducationlevel');
				}
				return (false);
			}
		}
    }
	if (form.contactRequest && !form.contactRequest.checked) {
        alert("To request more information, you must understand an AIU Online Admissions Advisor will contact you shortly to answer your questions about online education.");
        return (false);
    }
    return true;
}

function aiuProgramChange(form)
{
}

