function checkForm() {
	if(document.application.termsAgree.checked) {
		return true;
	}else{
		alert("You must agree to the terms and conditions!");
		return false;
	}
}
