JSFiddle - React, Tailwind, and code Playground
HTML
<a>Testing Select</a>
<select id="list"></select>
JavaScript
for (var i=0; i<15000; i++) {
var name = "Option "+i;
var sel = document.getElementById("list");
sel.options[sel.options.length] = new Option(name,i);
}