function lessonSignup() {
	
		function verify(data) {
			if (data=="1") {
				document.frmLessonSignup.reset();
				alert("Thank you! Your lesson request has been submitted, and we will contact you shortly!");
			}
			else {
				alert(data);	
			}
		}
		
		$.post("process/lesson_signup.php", $("#frmLessonSignup").serialize(), function(data){ verify(data) } );	
	
}
