Edit in JSFiddle

$(document).ready(function () {
    $.ajax({
        type: "GET",
        url: "https://mysafeinfo.com/api/data?list=presidents&format=select&rows=5&sort=id desc&id=presidents&valuefield=id&textfield=fullname",
        dataType: "html",
        success: function (result) {
            $("#select").html(result);
        },
        error: function (msg) {
            alert("fetch failed");
        }
    });
});
<div id="select"></div>