function AfficherDescription(source,cible) {
var ObjetSource = document.getElementById(source);
var ObjetCible = document.getElementById(cible);
var Description = ObjetSource.options[ObjetSource.selectedIndex].title;

ObjetCible.innerHTML = Description;
}