function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1>');
document.write('<option value="">Find An Artist');
document.write('<option value="Content/A/index.html">A');
document.write('<option value="Content/B/index.html">B');
document.write('<option value="Content/C/index.html">C');
document.write('<option value="Content/D/index.html">D');
document.write('<option value="Content/E/index.html">E');
document.write('<option value="Content/F/index.html">F');
document.write('<option value="Content/G/index.html">G');
document.write('<option value="Content/H/index.html">H');
document.write('<option value="Content/I/index.html">I');
document.write('<option value="Content/J/index.html">J');
document.write('<option value="Content/K/index.html">K');
document.write('<option value="Content/L/index.html">L');
document.write('<option value="Content/M/index.html">M');
document.write('<option value="Content/N/index.html">N');
document.write('<option value="Content/O/index.html">O');
document.write('<option value="Content/P/index.html">P');
document.write('<option value="Content/Q/index.html">Q');
document.write('<option value="Content/R/index.html">R');
document.write('<option value="Content/S/index.html">S');
document.write('<option value="Content/T/index.html">T');
document.write('<option value="Content/U/index.html">U');
document.write('<option value="Content/V/index.html">V');
document.write('<option value="Content/W/index.html">W');
document.write('<option value="Content/X/index.html">X');
document.write('<option value="Content/Y/index.html">Y');
document.write('<option value="Content/Z/index.html">Z');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');