function completeazaOrase (judetSelectat) {
var newContent;
var listaLength = 0;
	for (col = 0; col < listaOrase.length; ++col) {
		if (listaOrase[col][0]==judetSelectat) {
			newContent+='<option value="'+listaOrase[col][1]+'">'+listaOrase[col][2]+'</option>';
			listaLength++;
		}
	}
	if (listaLength >6) {
		listaLength = 6;
	} 
	if (listaLength ==0) {
		newContent = '';
	} else {
		newContent='<select name="oras_hid" size="'+listaLength+'" id="oras_hid" onChange="completeazaCartiere(document.ifield.oras_hid.options[document.ifield.oras_hid.selectedIndex].value);">'+newContent;
		newContent+='</select>';
		
	}
	document.getElementById('selectLocalitate').innerHTML = newContent;
	document.getElementById('selectCartier').innerHTML = '';
}

function completeazaCartiere (orasSelectat) {
var newContent;
	newContent='';
	nrCartiere=0;
	for (col = 0; col < listaCartiere.length; ++col) {
		if (listaCartiere[col][0]==orasSelectat ) {
			newContent+='<input type="checkbox" name="cartier_hid'+col+'" id="cartier_hid'+col+'" value="'+listaCartiere[col][1]+'">'+listaCartiere[col][2]+'<br>';
			
		}nrCartiere++;
	}
	newContent+='<input type="hidden" name="nr_cartiere" value="'+nrCartiere+'">';
	document.getElementById('selectCartier').innerHTML = newContent;
}
