/**
 * @author brolesi
 */
	var callbacksGlobais = {
		onCreate: function(){
			Element.show('chamadaEmCurso');
		},

		onComplete: function() {
			if(Ajax.activeRequestCount == 0){
				Element.hide('chamadaEmCurso');
			}
		}
	};

	Ajax.Responders.register(callbacksGlobais);
function ajax_uf(value){
	pars = "uf=" + value;
	url = "ajax.localidade.php?";
	a = new Ajax.Updater('div_localidades', url, { method: 'post', parameters: pars });
}
	
