Im looking to create a paypal button that has shipping options above the button, but no matter what I do I can't seem to get it to pass the shipping to paypal. So far it looks like: <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="XXXXX"> <select name="shipping" style="margin-bottom: 5px;"> <option selected value="3.95">USPS $3.95</option> <option value="5.95">UPS $5.95</option> <option value="7.95">FedEx $7.95</option> </select><br> <input type="image" src="xxxxxx" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form> Code (markup): Submit just takes me to paypal with the original product price, and no added shipping.. What am I doing wrong?