var ajax = new sack();

function getCityList(sel)
{
	var countryCode = sel.options[sel.selectedIndex].value;
	document.getElementById('brands').options.length = 0;	// Empty city select box
	if(countryCode.length>0){
		ajax.requestFile = '/js/getLists.php?cat_id='+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 createCities()
{
	var obj = document.getElementById('brands');
	eval(ajax.response);	// Executing the response from Ajax as Javascript code	
}