function loadPage(url, div){
	$("#"+div).html("<p align='center'>LOADING</p>");
    $.get(url, function(result){
        $("#"+div).html(result);
    });
}

function newVerify(){
	loadPage('core_verify.php', 'verify_div');	
}

function updateCarOptions(){
	if($('car_dropdown').value == "Other")
		$('car_other').style.display = "inline";
	else
		$('car_other').style.display = "none";
}

function checkForHolidayType(){
	if($('holidayTypeSelector').value == "NULL"){
		alert("Please tell us which type of holiday you are interested in");
		return false;
	} else {
		return true;
	}
}
