Auf auswahl von combobox reagieren

hallo,

ich möchte, wenn ein eintrag aus einer combobox/dropdown getätigt wird, sich automatisch an anderer stelle ein bild ändert.

hat jemand ein code-beispiel o.ä. für mich?

gruß

rasta

Hi RASTA,

vielleicht sowas in der Art …?

Test
<!–
bild1 = new Image();
bild1.src = „1.gif“;
bild2 = new Image();
bild2.src = „2.gif“;
bild3 = new Image();
bild3.src = „3.gif“;

function setImage(Wert) {
document.Bild.src = eval(„bild“ + Wert + „.src“);
}
//–>

Eintrag 1Eintrag 2Eintrag 3

LG, piranja

ich möchte, wenn ein eintrag aus einer combobox/dropdown
getätigt wird, sich automatisch an anderer stelle ein bild
ändert.