function alimentation() {
	var choix1 = document.formulaire1.choix[0].status;
	var choix2 = document.formulaire1.choix[1].status;
	var choix3 = document.formulaire1.choix[2].status;

	if ( choix1 ) {
		var domaine = 'sport';
		}
	if ( choix2 ) {
		var domaine = 'info';
		}
	if ( choix3 ) {
		var domaine = 'cook';
		}
	if (( choix1 || choix2 || choix3) != true) {
		window.alert('Selectionnez un domaine !');
		return false;
	}

	var optionsport0 = new Option("Voici la liste sport", "");
	var optionsport1 = new Option("Football", "football");
	var optionsport2 = new Option("Tennis", "tennis");
	var optionsport3 = new Option("Ski", "ski");
	var optionsport4 = new Option("Petanque", "petanque");

	var optioninfo0 = new Option("Voici la liste informatique", "");
	var optioninfo1 = new Option("HTML", "html");
	var optioninfo2 = new Option("Cobol", "cobol");
	var optioninfo3 = new Option("C++", "c++");
	var optioninfo4 = new Option("Assembleur", "assembleur");

	var optioncook0 = new Option("Voici la liste cuisine", "");
	var optioncook1 = new Option("Gastronomique", "gastronomique");
	var optioncook2 = new Option("Chinois", "chinois");
	var optioncook3 = new Option("Indien", "indien");
	var optioncook4 = new Option("Japonais", "japonais");

	for (var i = 0; i < 5; i++ ) {
		eval("document.formulairefinal.liste.options[i]=option" + domaine + i);
		if (i == 0 ) {
			document.formulairefinal.liste.options[i].selected = true;
			}
		}
	history.go(0);
	}

function effacer() {
	var vide = new Option("", "");
	for (var i = 0; i < 5; i++ ) {
		eval("document.formulairefinal.liste.options[i]=vide");
		document.formulaire1.reset();
		}
	history.go(0);
	}