function funcChangeVille(departement){

	var selectValueGamme = document.getElementById('selectGamme').options[document.getElementById('selectGamme').selectedIndex].value;	
	var selectValueVille = document.getElementById('selectVille').options[document.getElementById('selectVille').selectedIndex].value;
	selectValueVille = $.URLEncode(selectValueVille);
	$("div.distributeur").html("");
	$("div.distributeur").load("../_inc/CPN_ListeProduits.asp?dept="+departement+"&filtreville="+selectValueVille+"&filtregamme="+selectValueGamme+"");

}

function funcChangeGamme(departement){
	var selectValueGamme = document.getElementById('selectGamme').options[document.getElementById('selectGamme').selectedIndex].value;
	var selectValueVille = document.getElementById('selectVille').options[document.getElementById('selectVille').selectedIndex].value;
	selectValueVille = $.URLEncode(selectValueVille);
	$("div.distributeur").html("");
	$("div.distributeur").load("../_inc/CPN_ListeProduits.asp?dept="+departement+"&filtreville="+selectValueVille+"&filtregamme="+selectValueGamme+"");
}
