I just want to know how to refer to a dropdown box which is created
through sharepoint using javascript. As i unserstood the box is
created something like this,
<SCRIPT>
fld = new ChoiceField(frm,"Category0","Category","");
fld.format = "Dropdown";
fld.fFillInChoice = true;
fld.AddChoice("Choice", "");
fld.AddChoice("Choice1", "");
fld.IMEMode="";
fld.BuildUI();
</SCRIPT>
Is there a way that i can use a onChange event like we normally
specify within html <select> tags? and if i want to refer this field,
how do i do that?