// JavaScript Document
function comboArrondissement()
{
	url= "carte_postale_ajax.php?type=quartier&arrondissement="+(document.f1.arrondissement.value);
	fillCombo("quartier",url,1);
	//document.f1.paroisse.selectedIndex=0;
}

function comboQuartier()
{
	url= "carte_postale_ajax.php?type=voie&arrondissement="+(document.f1.arrondissement.value)+"&quartier="+(document.f1.quartier.value);
	fillCombo("voie",url,1);
}

function comboVoie()
{
	url= "carte_postale_ajax.php?type=edifice&arrondissement="+(document.f1.arrondissement.value)+"&quartier="+(document.f1.quartier.value)+"&voie="+(document.f1.voie.value);
	fillCombo("edifice",url,1);
}

function comboCommune()
{
	url= "carte_postale_ajax.php?type=edifice&commune="+(document.f1.commune.value);
	fillCombo("edifice",url,2);
}

function comboDepartement()
{
	url= "carte_postale_ajax.php?type=commune&departement="+(document.f1.departement.value);
	fillCombo("commune",url,2);
}
