Edit in JSFiddle

$.getJSON('https://restcountries.eu/rest/v1/all', function(result) {
    var options = $("#someSelect");
    $.each(result, function(key, countrie) {
        options.append(new Option(countrie.name, countrie.name));
    });
});
<select id="someSelect">
</select>

              

External resources loaded into this fiddle: