no, because that just uses onclick to change the visbility. It doesn't actually depend on the value of the radiobutton. what i need is something along the lines of (where field is a select box)
style="visibility:<%IF field = company THEN response.write "visible" else response.write "hidden"%>"
or at least to have the same effect. changing visibility depending on what has been clicked on is simple, especially since there's the behaviours wizard in frontpage does it for you. I need something that changes visibility depending on what option is selected in a combobox.
I know that i can do it by doing "onchange: submit" on the selectbox, and doing a postback, but i'd prefer not to reload the page.