Вот этот js
var textdisplay=new Array()
textdisplay[0]="ТЕКСТ"
textdisplay[1]="ТЕКСТ"
textdisplay[2]="ТЕКСТ"
textdisplay[3]="ТЕКСТ"
textdisplay[4]="ТЕКСТ"
function displaydesc(which){
if (document.all)
descriptions.innerHTML=textdisplay[which]
else if (document.getElementById)
document.getElementById("descriptions").innerHTML=textdisplay[which]
}
displaydesc(document.a294.a969.selectedIndex)
document.a294.a969.options[0].selected=true
Дело в том что я хочу чтобы вместо "ТЕКСТ" можно было писать любой html код, а не только текст.
Помогите мне!