function exibir_cidade(uf) {
	$.ajax(
	{
		type: "GET",
		url: "http://www.viadeacesso.org/avaliacao/index.php/cidade/exibir/" + uf,
		beforeSend: function() {
			$("select[name='id_cidade']").html('<option value="">Carregando...</option>');
		},
		success: function(data) {
			$("select[name='id_cidade']").html(data);
		},
		error: function(XMLHttpRequest, textStatus, errorThrown) {
			alert('Erro');
		}
	}
	);
}

function exibir_supervisor(id) {
	$.ajax(
	{
		type: "GET",	
		url: "http://www.viadeacesso.org/avaliacao/index.php/supervisor/exibir/" + id,
		beforeSend: function() {
			$("select[name='id_supervisor']").html('<option value="">Carregando...</option>');
		},

		success: function(data) {
			$("select[name='id_supervisor']").html(data);
		},
		error: function(data) {
			alert('Erro');
		}
	}
	);
}

function exibir_setor(id) {
	$.ajax(
	{
		type: "GET",	
		url: "http://www.viadeacesso.org/avaliacao/index.php/setor/exibir/" + id,
		beforeSend: function() {
			$("select[name='id_setor']").html('<option value="">Carregando...</option>');
		},

		success: function(data) {
			$("select[name='id_setor']").html(data);
		},
		error: function(data) {
			alert('Erro');
		}
	}
	);
}
