$(document).ready(function(){
    
    $("select.estados").change(function(){
        var sel = $(this);
        $.getJSON("cms/control/geters/obras/cidade.php",
              { uf: $(this).val()},
              function(json){
                  var j = json.length;
                  var html = '<option value="0">Cidade</option>';
                  for(i=0;i<j;i++){
                      html += '<option value="' + json[i].nome + '">' + json[i].nome + '</option>';
                  }
                  var ret = sel.attr("ret");
                  $(ret + ' option').remove();
                  $(ret).append(html);
              }
        ); 
    });
});

function showHide(el,hide)
{
    $(hide).hide();
    $(el).show();
}
function showHide2(el,hide)
{
    $(hide).each(function(){
		$(this).hide();
	});
	if($(el).is(':visible'))
    	$(el).hide();
	else
		$(el).show();
}

