$(".slideshow").cycle();


$(function() {
	$("#city").change(function() {
		$.post(base + "imoveis/ajax_city", { city : $(this).val() }, function(retorno){
			$("#zone").html(retorno);
		}); 
	});
});
