I'm kicking my self for not being able to do this. But I've tried almost everything. I simply want to redirect a user to a specific page when they click an option in my option value list. Here's my current code (which should explain my question better):\[code\]<select name="test_redirect"><option value="http://stackoverflow.com/questions/14597487/1" onclick="document.location = 'http://localhost/shop?item=1';">Item 1</option><option value="http://stackoverflow.com/questions/14597487/2" onclick="document.location = 'http://localhost/shop?item=2';">Item 2</option><option value="http://stackoverflow.com/questions/14597487/3" onclick="document.location = 'http://localhost/shop?item=3';">Item 3</option></select>\[/code\]I've also tried onChange as well. Same result. Can some one please help me with this? Thank you guys.