I try to create donate via PayPal button and add custom select with amount. I tried to add something like this:
<label for="amount">Select the amount you wish to donate:</label>
<input type="hidden" name="currency_code" value="EUR" />
<select id="amount" name="amount">
<option value="25.00">€25.00</option>
<option value="35.00">€35.00</option>
<option value="50.00">€50.00</option>
<option value="75.00">€75.00</option>
<option value="100.00">€100.00</option>
</select>
but PayPal simply doesn't recieve selected value. What I'm missing? What custom variables should I put into button generator form?
