I have a Buy Now Button with a dropdown menu with three payment options: 50, 75, and 100. Regardless of what is clicked, the buyer is brought to a PayPal page to pay $50. Here's my page: http://www.gbmedical.org/scholarship.html The offending button's code is here: <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="hosted_button_id" value="K75ZKDLXJXV3Q"> <table> <tr><td><input type="hidden" name="on0" value="How much do you wish to donate?">How much do you wish to donate?</td></tr><tr><td><select name="os0"> <option value="Donation">Donation $50.00</option> <option value="Donation">Donation $75.00</option> <option value="Donation">Donation $100.00</option> </select> </td></tr> </table> <input type="hidden" name="currency_code" value="USD"> <input type="image" src="https://www.paypalobjects.com/WEBSCR-640-20110306-1/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> <img alt="" border="0" src="https://www.paypalobjects.com/WEBSCR-640-20110306-1/en_US/i/scr/pixel.gif" width="1" height="1"> </form> Another weird thing is that I have another dropdown menu button that appears the same, but works perfectly well. That button is at http://www.gbmedical.org/fundraiser.html Thanks in advance for anyone's help!
... View more