I'm so close to finding a solution! I thought I had everything wrapped up for my project, but ran into a problem.

Here's the page I am working on:
http://www.cacorvettecustoms.com/ind...&products_id=2

I have made an if/then statement when calling the "tpl_modules_attributes.php" from the "tpl_product_info_display.php" page. Basically, if it's any another product than this one, the standard attributes page loads. When this product, product_id=2, is loaded, i load a static attribute page.

The first 4 attributes are fine the way the are. I am trying to get the color option to be dynamic based off the year. I have used a simple way to get this done. However, it seems that using the standard form names causes an issue. In the line:
Code:
<select name="id[5]" id="attrib-5" onchange="setOptions(document.cart_quantity.id[5].options[document.cart_quantity.id[5].selectedIndex].value);">
The id[5] seems to be messing it up. I tried to rename the form components, and it worked for the page, but it does not carry the attributes over to the shopping cart.

Help!