	function Campo(pTitulo, pNome ,pValor, pTipo) {
		this.titulo = pTitulo;
		this.nome = pNome;
		this.valor = pValor;	
		this.tipo = pTipo;
	}
	

	function CampoSelecao(pNomePai, pNome, pValor) {
		this.nomePai = pNomePai;
		this.nome = pNome;
		this.valor = pValor;
	}
