var ajax = new Array();

function getCountryList(sel)
{
	var countryCode = sel.options[sel.selectedIndex].value;
	document.getElementById('LocationCountry').options.length = 0;	// Empty select box
	if(countryCode.length>0){
		var index = ajax.length;
		ajax[index] = new sack();
		
		ajax[index].requestFile = '/includes/get-data/getCountries.php?countryCode='+countryCode;	// Specifying which file to get
		ajax[index].onCompletion = function(){ createCountries(index) };	// Specify function that will be executed after file has been found
		ajax[index].runAJAX();		// Execute AJAX function
	}
}

function createCountries(index)
{
	var obj = document.getElementById('LocationCountry');
	eval(ajax[index].response);	// Executing the response from Ajax as Javascript code	
}
