// JavaScript Document
$().ready(function() {
	$("select[@name=cidade]").change(function(){
		$('select[@name=bairro]').html('<option value="">Procurando :::::::</option>');
		$.post('listabairros.asp', 
			{ cidade : $(this).val() }, 
			function(resposta){
				$('select[@name=bairro]').html(resposta);
			}
		);
	});
});

function pesquisa(cod){
	document.pesquisa.action.value = 'index.asp?url=detalhes';
	document.pesquisa.id.value = cod;
	alert(document.pesquisa.action.value);
	document.pesquisa.submit();
}
