function validate(form) {
	if(!form.Agree_Submit.checked) {
		alert('You must agree to the terms and conditions before submitting.');
		return false;
	}
	else {
		return true;
	}
}
