function carregaSelectCidades()
{	
	id_estado = $('#seluf').val();	
	id_cidade = $('#idcidade').val();	

	$.post('cidadesIBGE_select_ajax.php',
		{estado_id: id_estado, cidade_id : id_cidade},
		function(data){

			document.getElementById('select_cidades').innerHTML = data;
			
			
			//$('#select_busca_adv_3').empty().html(data);
		});
}
