Reference this page: http://www.ivault.sg/nproduct.php?pid=116&cat=2
Selecting an option on the dropdown box by the side should change the href of \'Add to Cart\
Instead of the "click" event, use "change", as in
$("#productOptions").change(function(){ var id=$(this).attr("value"); if (id != "") { $("#productAddToCart").attr("href","addtocart.php?code="+id); } });