function aioCheckForm(form) {
	if (form.state && form.state.value == "MN") {
      alert("We're sorry but Art Institute Online does not currently accept students in your state.");
      return (false);
    }
	if (form.gradYear && form.gradYear.value == '') {
        alert("Please specify High School Graduation Year.");
        return (false);
    }
	if (form.gradYear && form.gradYear.value > '2008') {
        alert("The Art Institute Online only accepts applications for people who have completed their high school education prior to 2008.");
        return false;
    }
    if (form.program && (form.program.value.indexOf('FRM')==0 || form.program.value.indexOf('ADV')==0) && form.gradYear && form.gradYear.value > '2006') {
        alert("To be eligible for the Advertising or Fashion & Retail Management program, you must have completed your high school education prior to 2006.");
        return false;
    }
	if (form.military) {
		if(form.military.value != "" && form.military.value != "---" && form.military.value != "No") {
			if (form.program && (form.program.value.indexOf('ADVOM')==0 || form.program.value.indexOf('PHAS')==0)) {
				alert("Your Student Information Form indicates that you do not meet the admissions requirements.");
				return false;
			}
		}
	}
	if (form.comments && form.comments.value == '') {
        alert("Please tell us why you are interested in an online degree from The Art Institute Online.");
        return (false);
    }
	if (form.contactRequest && !form.contactRequest.checked) {
        alert("To request more information, you must understand a representative from Art Institute Online will be contacting you.");
        return (false);
    }
    return true;
}

function aioProgramChange(form)
{
}
