$().ready(function() {

$('#estado').change(function(){
	if ($(this).val() != 0){
		$('#cidade').html('<option value="0">Carregando cidades</option>'); 
		$.post('http://www.terapiaviva.com.br/ajax/cidades',
		{estado : $(this).val()},
		function(resposta){
		$('#cidade').html(resposta);
		$('#cidade').change();
		});
	}else{
		$('#cidade').html('<option value="0">Todas as cidades</option>'); 
		$('#bairro').html('<option value="0">Todos os bairros</option>'); 
	}
});

$('#cidade').change(function(){
	if ($(this).val() != 0){
		$('#bairro').html('<option value="0">Carregando bairros</option>'); 
		$.post('http://www.terapiaviva.com.br/ajax/bairros',
		{cidade : $(this).val()},
		function(resposta){
		$('#bairro').html(resposta); 
		});
	}else{
		$('#bairro').html('<option value="0">Todos os bairros</option>'); 
	}
});

});