function validar_search()
{
	var categ = '';
	var estado = '';
	var tip_inm = '';
	var op_venta = '';
	var op_alquiler = '';
	var tip_oper = '';
	var Entrar = true;
	var Error = "Por favor, corrija:\n";
	op_venta = document.getElementById("operacion_venta");
	op_alquiler = document.getElementById("operacion_alquiler");
	tip_oper = document.getElementById("tipo_operacion");
	estado = document.getElementById("estado").value;
	categ = document.getElementById("Categoria");
	tip_inm = document.getElementById("tipo_inmueble").value;
		
	if(op_venta.checked)
		tip_oper.value = "Compra-Venta";

	if(op_alquiler.checked)
		tip_oper.value = "Alquiler";

	
	if(tip_inm == 0 && document.getElementById('cis_num').value == "")
	{
		//categ.value ="TODOS";
		Entrar = false;
		Error += "Seleccione Tipo de Inmueble\n";
		document.getElementById("tipo_inmueble").className = "searchinvalid";
	}
	
	if(tip_inm == "Apartamento" || tip_inm == "Casa-Quinta" || tip_inm == "Town House" || tip_inm == "Anexo" || tip_inm == "Habitacion")
		categ.value = "R";

	if(tip_inm == "Oficina" || tip_inm == "Local Comercial")
		categ.value = "C";

	if(tip_inm == "Galpon-Deposito" || tip_inm == "Planta Industrial")
		categ.value = "I";

	if(tip_inm== "Edificio")
		categ.value = "E";

	if(tip_inm == "Terreno")
		categ.value = "T";

	if(estado == 0 && document.getElementById("cis_num").value == "")
	{
		Entrar = false;
		Error += "Seleccione un Estado\n";
		document.getElementById("estado").className = "searchinvalid";
	}
	if(Entrar)
	{
		return true;
	}
	else
	{
		alert(Error);
		return false;
	}
	//alert('Entrar: '+Entrar)
}