thanks,
I would still have to put the call to this 30 times in my form page.
Code:
<script type="text/javascript">
outputText();
</script>
Is that efficient to have that much <script> and </script> in my form page?
Or is there a more efficient way for me to do this besides putting in this in there instead 30 times which would not have the script tags but would take up more html code:
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
...100 times...