var ajax = new sack();

function getCityList(sel){
	var countryCode = sel.options[sel.selectedIndex].value;
	document.getElementById('kat_destinace').options.length = 0;	// Empty city select box
	if(countryCode.length>0){
		ajax.requestFile = 'config_ajax.php?vzdelaniCode='+countryCode;	// Specifying which file to get
		ajax.onCompletion = createCities;	// Specify function that will be executed after file has been found
		ajax.runAJAX();		// Execute AJAX function
		
	//	document.forms.zajezdy.seltest.value = "1";
	}
}

function getCityListEmpty(){
//	var countryCode = sel.options[sel.selectedIndex].value;
	document.getElementById('kat_destinace').options.length = 0;	// Empty city select box
//	if(countryCode.length>0){
		ajax.requestFile = 'config_ajax.php';	// Specifying which file to get
		ajax.onCompletion = createCities;	// Specify function that will be executed after file has been found
		ajax.runAJAX();		// Execute AJAX function
		
//		document.forms.zajezdy.seltest.value = "1";
//	}
}

function createCities(){
	var obj = document.getElementById('kat_destinace');
	eval(ajax.response);	// Executing the response from Ajax as Javascript code	
	
//	alert(document.forms.zajezdy.seltest.value);
//	document.forms.zajezdy.seltest.value = "1";
}
