// JavaScript Document
	function doChangeCombo() {
		var arrValues = new Array();
		arrValues[0] = new Array();
		arrValues[1] = new Array();
		arrValues[0][0] = 'Animation commerciale';
		arrValues[0][1] = 'Soirée événementielle';
		arrValues[0][2] = 'Soirée à thème';
		arrValues[0][3] = 'Location de matériel';
		arrValues[0][4] = 'Location de club';
		arrValues[0][5] = 'Décoration de salle';
		
		arrValues[1][0] = 'Mariage';
		arrValues[1][1] = 'Soirée privée';
		arrValues[1][2] = 'Karaoké';
		arrValues[1][3] = 'Location de matériel';
		arrValues[1][4] = 'Location de club';
		arrValues[1][5] = 'Décoration de salle';
		arrValues[1][6] = 'Soirée à thème';
		
		var nSelection = document.getElementById('fieldEtes').options.selectedIndex;
		var objInformations = document.getElementById('fieldInformations');
		if (nSelection >= 0 && nSelection <= 1) {
			objInformations.options.length = 0;
			for (var i = 0; i < arrValues[nSelection].length; i++) {
				objInformations.options[i] = new Option(arrValues[nSelection][i]);
			}
		}
		return;
	}