Hi,
I'm currently developing a site, and i need to be able to make a product selection from 4 drop down boxes, whats in the four drop down boxes will determine what product is chosen.
Can any point me in the right direction?
Thanks
Mark
This sort of thing is done in JavaScript and probably (but not essentially) with AJAX. When you select the first dropdow, JavaScript sends a request for the list for the second dropdown based on your first selection. And so on until you get the last one. The action after selection is triggered by adding onChange attribute to your select tag (with apropriate javascript function). If you don't want to use AJAX, you have to load every possibility at page load.