function addRegion()
{
	document.cartes.region.options.length = 0;
	if (language == "FR")
		document.cartes.region.options[0] =
							new Option( "-- sélectionnez la région --", "", null, true);
	else
		document.cartes.region.options[0] =
							new Option( "-- region selection --", "", null, true);

	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Alsace", "42", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Alsace", "42", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Aquitaine", "72", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Auvergne", "83", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Bourgogne", "26", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Bretagne", "53", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Centre", "24", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Champagne-Ardenne", "21", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Corse", "94", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Franche-Comté", "43", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Ile-de-France", "11", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Languedoc-Roussillon", "91", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Limousin", "74", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Lorraine", "41", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Franche-Comté", "43", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Midi-Pyrénées", "73", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Nord-Pas-de-Calais", "31", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Basse-Normandie", "25", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Haute-Normandie", "23", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Pays de la Loire", "52", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Picardie", "22", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Poitou-Charentes", "54", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Provence-Alpes-Côte d'Azur", "93", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Rhône-Alpes", "43", null, null);
	document.cartes.region.options[document.cartes.region.length] =
											new Option( "Départements d'Outre Mer", "97", null, null);
	
}
	
