// JavaScript Document

function comboChangeCommune(id)
{
	var url= "registre_ajax.php?type=ancien&commune="+(document.f1.id.value);
	fillCombo("ancien",url);
}

function comboChangeAncien(id)
{
	var url= "registre_ajax.php?type=paroisse&commune="+(document.f1.id.value)+"&ancien="+(document.f1.ancien.value);
	fillCombo("paroisse",url);
}

function comboChangeParoisse(id)
{
	//var url= "registre_ajax.php?type=acte&commune="+(document.f1.id.value)+"&ancien="+(document.f1.ancien.value)+"&paroisse="+(document.f1.paroisse.value);
	//fillCombo("acte",url);
}


