Hi,
I am looking for a way to display divs using javascript based on a number selected from a simple select box as follows:
<SELECT id ="categories">
<OPTION id="opt1">1</OPTION>
<OPTION id="opt2">2</OPTION>
<OPTION id="opt3">3</OPTION>
<OPTION id="opt4">4</OPTION>
</SELECT>
When I select '1' I would like the first div to display.
When I select '2' I would like the first and second div to display.
When I select '3' I would like the first, second and third div to display.
etc...
Any help would be greatly appreciated.
Thanks in advance,
John


