
function Choix_getOption() {
return this.option;
}
function Choix(p_texte, p_valeur, p_legende) {
this.texte = p_texte;
this.valeur = p_valeur;
this.legende = p_legende;
this.option = new Option(this.texte, this.valeur);
this.getOption = Choix_getOption;
this.option = new Option(this.texte, this.valeur);
this.option.setAttribute('title', this.legende);
}