$().ready(function() {
	$("select[@name=tipo1]").change(function(){
		$('select[@name=nome1]').html('<option value="">Procurando :::::::</option>');
		$.post('../busca_estab.php', 
			{ tipo1 : $(this).val() }, 
			function(resposta){
				$('select[@name=nome1]').html(resposta);
			}
			
		);
	});
});

$().ready(function() {
	$("select[@name=tipo]").change(function(){
		$('select[@name=estab]').html('<option value="">Procurando :::::::</option>');
		$.post('../busca_estab.php', 
			{ tipo : $(this).val() }, 
			function(resposta){
				$('select[@name=estab]').html(resposta);
			}
			
		);
	});
});

