<!--

	var ajax = new sack();

	function getCityList(sel)
	{
		var countryCode = sel.options[sel.selectedIndex].value;
		document.getElementById('il_numerik').options.length = 0;
		if(countryCode.length>0){
			ajax.requestFile = 'getCities.php?countryCode='+countryCode;
			ajax.onCompletion = createCities;
			ajax.runAJAX();
		}
	}

	function getCityListActive()
	{
		var countryCode = '';
			document.getElementById('il_numerik').options.length = 0;
			if(countryCode.length>0){
			ajax.requestFile = 'getCities.php?countryCode='+countryCode;
			ajax.onCompletion = createCities;
			ajax.runAJAX();
		}
	}

	function createCities()
	{
		var obj = document.getElementById('il_numerik');
		eval(ajax.response);
	}


	-->