Only countries

PHOTO EMBED

Thu Jun 08 2023 10:07:26 GMT+0000 (Coordinated Universal Time)

Saved by @Annie #jquery

$(function () {
  $("select").change(function () {
    if ($(this).val() === "RU") {
      $(".country1").text("Россия");
    } else if ($(this).val() === "UZ") {
      $(".country1").text("Узбекистан");
    }
  })
});
content_copyCOPY