var ajax = new Array();

function getsubcatList(sel)
{
	var countryCode = sel.options[sel.selectedIndex].value;
	document.getElementById('prosubcat').options.length = 0;	// Empty city select box
	if(countryCode.length>0){
		var index = ajax.length;
		ajax[index] = new sack();
		
		ajax[index].requestFile = 'special/getprosubcat.php?idcat='+countryCode;	// Specifying which file to get(put all the url from the root)
		ajax[index].onCompletion = function(){ createsubcat(index) };	// Specify function that will be executed after file has been found
		ajax[index].runAJAX();		// Execute AJAX function
	}
}

function createsubcat(index)
{
	var obj = document.getElementById('prosubcat');
	eval(ajax[index].response);	// Executing the response from Ajax as Javascript code	
}