apparently this is not proper syntax in javascript, because it doesn't work:
onChange="document.vol[0][change].value=1"
I have made it work with something like
onChange="document.vol0change.value=1"
which tells me that javascript doesn't like html elements that have arrays as names. Anyone have any idea how to properly reference an element with an array as a name?
thanks!