function removeAllOptions(selectbox) {
	var i;
	
	for(i=selectbox.options.length-1;i>=0;i--)
	{
		selectbox.remove(i);
	}
}

function tri_marque(id, tab) {
	//alert("longueur tableau"+tab.length);
	var x=document.getElementById("modele");
	marque=document.getElementById(id).value;
	//alert(marque);
	if(marque == '') return false;
	removeAllOptions(x);
	x.options[0]=new Option("Tous les modèles","");
	var j=1;
	for(var i=0; i<tab.length; i++) {
		if (tab[i][0]==document.getElementById(id).value) {
			x.options[j]=new Option(tab[i][1],tab[i][1]);
			j++;
		}
		//alert('marque:'+tab[i][0]+' modele:'+tab[i][1]);
		//alert(tab[i]);
	}
	//x.options=tab;

	//x.options[pos] = new Option(txt,txt);
	//x.options[1] = new Option("TEST2", "B");
}
