Is it possible to set up a dropdown menu selector where the visitor selects "Volvo" from the first dropdown menu and "White" from the second dropdown menu, then hits the submit button to be directed to URL 1?
Here is an example of how it could potentially be done:
<body> <select> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="opel">Opel</option> <option value="audi">Audi</option> </select> <select> <option value="white">White</option> <option value="black">Black</option> <option value="red">Red</option> <option value="blue">Blue</option> </select> </body>