﻿function slide() {
    var countryList = document.getElementById("country_list");
    if (countryList.style.display == "block") {
        countryList.style.display = "none";
    }
    else {
        countryList.style.display = "block";
    }
}