' + country.text + '' ); return $country; }; $('#country-select').select2({ theme: "bootstrap-5", width: "0%", placeholder: $(this).data('placeholder'), templateResult: formatCountry, templateSelection: formatCountry, dropdownParent: $("#modalBooking"), escapeMarkup: function(markup) { return markup; } }); $('#country-select').on('change', function() { var selectedValue = $(this).val(); if (selectedValue) { $('#phone-input').val(); $('#phone-form').removeClass('phone-form-hidden'); } else { $('#phone-input').val(''); $('#phone-form').addClass('phone-form-hidden'); } }); // Hide phone form initially $('#phone-form').addClass('phone-form-hidden');