$(document).ready(function(){
	$('#com_father').change(function(event){		
		/*Obtengo el rubro seteado*/			
			if($('#type')){
				var cat;
				cat = $('#type').val();
			}

		/*Llamada a la funcion que sincroniza con servidor*/
			getDependentValues($(this).val(), cat);

	});	
});

function getDependentValues(fth_value, catId)
/*Conecto via ajax al Scrip php que retorna los valores dependientes*/
{
	$.ajax({
		   timeout: 8000,	
		   async:true,
		   type: "POST",
		   url: "jq_ajax/obtain_citys.php",
		   data: "fth_value="+fth_value+"&catId="+catId+"",
		   global: true,
		   ifModified: false,
		   processData:true,
		   beforeSend:function(){
				$('#com_son_1').hide();
				$('#sp_son_1').append('<font id="cargando_citys" face="arial" size=2 color="#F4901D">Cargando...</font>');
			},
		   success:function(msg){
				$('#com_son_1').html(msg);
				$('#com_son_1').attr('disabled', false);
				$('#cargando_citys').remove();
				$('#com_son_1').show();
			}			    
		});
}

