var ajax = new sack();

function refreshSSCategories(sel){
	var catId = sel.options[sel.selectedIndex].value;
	document.getElementById('id_sous_cat').options.length = 0;	// Empty city select box
	if(catId.length>0){
		//alert('url'+'/ajax/getSSCategories.php?catId='+catId);
		ajax.requestFile = '/ajax/getSSCategories.php?catId='+catId;	// Specifying which file to get
		ajax.onCompletion = createSSCategorie;	// Specify function that will be executed after file has been found
		ajax.runAJAX();		// Execute AJAX function
	}
}

function refreshSSCategoriesManquantes(sel){
	var catId = sel.options[sel.selectedIndex].value;
	document.getElementById('id_sous_cat').options.length = 0;	// Empty city select box
	if(catId.length>0){
		//alert('url'+'/ajax/getSSCategories.php?catId='+catId);
		ajax.requestFile = '/ajax/getSSCategoriesManquantes.php?catId='+catId;	// Specifying which file to get
		ajax.onCompletion = createSSCategorie;	// Specify function that will be executed after file has been found
		ajax.runAJAX();		// Execute AJAX function
	}
}
	
function createSSCategorie() {
	//alert(ajax.response);
	var obj = document.getElementById('id_sous_cat');
	eval(ajax.response);	// Executing the response from Ajax as Javascript code	
}
