function Choix(choose, valeur) 
{	
	k = choose.famille.selectedIndex;
	//alert(valeur);
	if (k == 0) 
	{
		var contenu = "<select name='voiture'><option value='none' selected>Véhicule</option></select>";
		span = document.getElementById("voiture");
		span.innerHTML=contenu;	
		return;
	}

	var taille = tabjs['id_v'].length;
	var txt = new Array();
	var id_categorie = new Array();
	var id_v = new Array();
	var tours = 0;
	for (i=0; i<taille; i++)
		{
			if(tabjs['id_famille'][i]==valeur)
			{
				//alert (tabjs['nom_voiture'][i]);
				txt[tours] = tabjs['nom_voiture'][i];
				id_categorie[tours] = tabjs['id_categorie'][i];
				id_v[tours] = tabjs['id_v'][i];
				//alert("VPN "+tabjs['num'][i]);
				tours = tours+1;
			} 
		}	

	var contenu = "<select name='voiture'><option value='none' selected>Véhicule</option>";
	for(z=0; z<tours; z++)
	{
	contenu += "<option></option>";
	}
	contenu += "</select>";
	span = document.getElementById("voiture");
	span.innerHTML=contenu;	
	
		document.choose.voiture.options[0].text="Véhicule";
		document.choose.voiture.options[0].value="none";
		for (k=0;k<tours;k++) 
		{
			document.choose.voiture.options[k+1].text=txt[k];
			document.choose.voiture.options[k+1].value=id_v[k]+"-"+id_categorie[k]+"-"+txt[k];
		}
}