Details
Description
When registering for a paid event, the JS function skipPaymentMethod() fires when you change the value of a checkbox or text box, but not a select box. This means that if your price set is made up only of select boxes (or those are the only options selected by a registrant),
I can submit a PR Monday if someone else doesn't get to it first, but to fix this, change "templates/CRM/Event/Form/Registration/Register.tpl" line 230 from:
cj('#priceset input).change(function () {
to
cj('#priceset input, #priceset select').change(function () {