Sure. Add on onChange handler:
<select name = "product" class="buy" onChange="JavaScript:mySelect(this);">
Code the mySelect function in the head/script section:
function mySelect(x)
{
window.location.href = "http://www.your_domain.com/" +
x.options[x.selectedIndex].value;
}
Some variation of that ought to do the trick.
Reputation Points: 227
Solved Threads: 37
Made Her Cry
Offline 1,697 posts
since Dec 2004