$(document).ready(function(){
	loadCityChoice();
	
	$('#country').change(function(){
		loadCityChoice();
	});							
	function loadCityChoice(){
		var ch = $('#country').val();
		var adata = {
			"country_id" : ch,
			"destination_id": destination_id
		};
		$.ajax({
			type: "POST",
			url: path_ajax_script+"/index.php?act=loadCity",
			data: adata,
			dataType: "html",
			success: function(html){
				$('#destinationHolder').html(html);
				$('#destinations').selectbox();
			}
		});
	}	
	$('#TAILOR').click(function(){
		$.popup.show(path_ajax_script + tour_url_customize,{
			wwidth: 900,
			wheight: screen.height,
			wposition:'left'
		});	
		return false;
	});
});
