function TipoInmueble(id, nombre) {
    this.id = id
    this.nombre = nombre
}
$(document).ready(function() {
    $("#idTipoInmueble").change(function () {        	
    	if(typeof datosProvincia == 'function') {     		 
	    	datosProvincia();
    	}
	    $("#idSubTipoInmueble").html("<option value='0'>Todos</option>");         		         		
         $("#idTipoInmueble option:selected").each(function () {      		         		
         		if($(this).val() != 0){
	         		jQuery.each(eval("arrayTipoInmueble" + $(this).val()), function(i) {
	         			jQuery("#idSubTipoInmueble").append('<option value="' + this.id + '">' + this.nombre + '</option>');         			
	    			});                
	    			$("#idSubTipoInmueble").css("width","auto");
	    			$("#idSubTipoInmueble").css("float",floatSubtipo);
         		}         		
          });          
     });
});