function filtro_Localidad() {
	var DEPARTAMENTOS = document.ingreso.departamento;
	var depto_id = DEPARTAMENTOS.options[DEPARTAMENTOS.selectedIndex].value;
	var depto_locs = DEPTO_LOCS[depto_id];
	var LOCS = document.ingreso.elements['localidad'];
	var cant_locs = LOCS.options.length;
	for (var j=cant_locs;j>=0;j--) LOCS.options[j] = null;

	var i = 1;
	if (depto_locs.length > 1){
		LOCS.options[0] = new Option("Seleccionar una ...");
	}
	for (var k in depto_locs) {
		LOCS.options[LOCS.options.length] = new Option(depto_locs[k],k);
	}
	LOCS.selectedIndex=0;

	return true;
}

