<script type="text/javascript"> function otherPayment() { var paymentType = document.getElementById("paymentType").value; if (paymentType == "Other") { window.location.hash = "#popmake-1107"; } } </script> <div class="form-group"> <label for="paymentType">Payment Type:</label> <select class="form-control" id="paymentType" name="paymentType" required onchange="otherPayment()"> <option value="">-</option> <option value="Payment (Initial)">Payment (Initial)</option> <option value="Payment (Full)">Payment (Full)</option> <option value="Payment (Balance)">Payment (Balance)</option> <option value="Delivery Fee">Delivery</option> <option value="Other">Other</option> </select> </div>