here is a way ...
HTML Code:
<select title="Select a Font Size" name="fontsize" id="FontSize" style="width:75px" class="layoutMenu">
<script language="JavaScript">
<!--
for(i=10;i<20;i++){
document.write('<option value="'+i+'px"');
if(size==i+'px'){document.write(' selected');}
document.write('>'+i+'px</option>\n');
}
document.write('<option value="xx-large"');
if(size=='xx-large'){document.write(' selected');}
document.write('>xx-large</option>\n');
-->
</script>
</select>
i see you're using asp, why not just do this server-side?