$(function() {
	$("form").submit(function() {
		return validate_form({
			"#first-name": "exists",
		"#last-name": "exists",
			"#email": "email",
			"#phone": "phone",
			"#comment": "exists"
		});
	});
});
