var Parecer = {
	
	oForm: '',
	
	SelectDocumento: function() { 
		oForm.Validate.value = ''; 
		oForm.submit(); 
		return false 
	},
	
	SelectUF: function() { 
		if (oForm.UF.options[1].selected || !isUndefined(oForm.Cidade)) { 
			oForm.Validate.value = ''; 
			oForm.submit() 
		} 
		return false 
	},
	
	iniciar: function() { 
		oForm = document.getElementById('busca-graficas')
		DOM.listen('change', 'TipoDocumento', Parecer.SelectDocumento); 
		if (!isUndefined(oForm.UF)) DOM.listen('change', 'UF', Parecer.SelectUF) 
	}
	
}

DOM.listen('load', window, Parecer.iniciar)