// JavaScript Document

function getSubRegion() {
	var region = $("#region").val();
	
	$.ajax({
	   type: "POST",
	   url: "cp_details.php",
	   data: "region=" + region + "&funNum=2",
	   success: function(html){
			html = '<option value="">--Please select--</option>' + html;
			$("#subRegion").html(html);
			$("#subRegion").val("");
			$("#location").val("");
	   }
	}); 
}

function go_cp_list() {
	var region = $("#region").val();
	var subRegion = $("#subRegion").val();
	
	switch(region) {
		case 'HK':
			region = 55;
			break;
		case 'KLN':
			region = 60;
			break;
		case 'NT':
			region = 54;
			break;
	}
	
	window.location.href = "car_park_list.php?regionId=" + region + "&subRegionId=" + subRegion;
}
