﻿$(function() {
	
	$("#campo-uf, #campo-municipio").bind("change", function() {
		
		if ($(this).attr("id") == "campo-uf") $("#campo-municipio").val("");
		/*var url = "/revendas/estado/" + $("#campo-uf").val().toLowerCase();
		if ($(this).attr("id") == "campo-municipio") url += "/cidade/" + escape($(this).val().toLowerCase());
		window.location = url;*/
		
		$(this).parents("form").submit();
		
	});
	
}); 
