/**
 * Validate and submit form
 */
function postForm() {	
	if($('#ContactUsForm').valid()) {
		$('#ContactUsForm').get(0).submit();
	}
}		
