Yes, make an Ajax call to fetch JSON and using JS append select options.function updateChange(defaultSelect, page) {
            var url = "/app/authordata.json";
            var varHiddenSel = $('input[name="./selectionHidden"]');
            var isSelected=false;
            $.get(url, function(da...