// JavaScript Document
function carregaTiposInmueble(cod_clase) {
	var carrega = function (o) {
		jQuery("#tipo").html(o);
	}
	jQuery.ajax({type: "POST", url: "/php/tiposInmueble.php", data: 'id_clase='+cod_clase, success: carrega });
}