$(document).ready(function(){
	$('#cadUf').change(function(){
		var uf = $(this).val();
		montaCidade(uf);
	});
	$('#cadUf').change();
});
function montaCidade(uf, selecionado){
	$('#select-cdd').html('<img src="'+SITEROOT+'layout/img/loading.gif"><span>Aguarde carregando...</span>');
	$.post(SITEROOT+'script/select-cdd.php',{codigo:uf, sel:selecionado}, function(retorno){
		$('#select-cdd').html(retorno);
	});
}
