var ajax = new sack();

function getCityList(sel)
{
	var countryCode = sel.options[sel.selectedIndex].value;
	document.getElementById('dhtmlgoodies_city').options.length = 0;	// Empty city select box
	if(countryCode.length>0){
		ajax.requestFile = 'http://www.casaverona.net/scriptajax/prova.php?variabile='+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
	}
}

function getCityList2(sel)
{
	var countryCode = sel.options[sel.selectedIndex].value;
	document.getElementById('dhtmlgoodies_city2').options.length = 0;	// Empty city select box
	if(countryCode.length>0){
		ajax.requestFile = 'http://www.casaverona.net/scriptajax/prova.php?variabile='+countryCode;	// Specifying which file to get
		ajax.onCompletion = createCities2;	// Specify function that will be executed after file has been found
		ajax.runAJAX();		// Execute AJAX function
	}
	var el = 'test1';
	if(countryCode==1){
    Show(el);
	}
	if(countryCode!=1){
    Hide(el);
	}    
}

function Hide(id)
{
    var element = Getel(id);
    element.style.display = 'none';
}

function Show(id)
{
    var element = Getel(id);
    element.style.display = '';
}

function createCities()
{
	var obj = document.getElementById('dhtmlgoodies_city');
	eval(ajax.response);	// Executing the response from Ajax as Javascript code	
}

function createCities2()
{
	var obj = document.getElementById('dhtmlgoodies_city2');
	eval(ajax.response);	// Executing the response from Ajax as Javascript code	
}		