I'm trying to implement dynamic select boxes by using onchange. The ultimate goal is to create a series of select boxes that vary based on what is chosen in the previous select. For some reason, the onchange isn't firing. Here is the definition for the first select in the chain:
<select name='firstDrop' onchange='handleSelects(window.document.builder.firstDrop.options[selectedIndex].text);'>
For some reason the javascript function (defined in an exernal file) is never called. Any ideas?