No products in the cart.
Access our premium support and let us know your problems, we will help you solve them.
$("#dropdownid").change(function(el) {
console.log(el.value);
});
Or you can use this
$("#dropdownid").change(function() {
console.log($(this).val());
});