Here is what I've got so farr.. The goal is to have a select menu displaying numbers from 0 to 9, with the value as the respective number, and to also incrementally number the select tags.
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<script type="text/javascript">
function more()
{
counter += 1;
document.getElementById("options").innerHTML += ("<select name='" + counter + "'>");
for (var i=0;i<10;i++){
document.getElementById("options").innerHTML += ("<option value='" + i + "'>"+ i + "</option>");
}
document.getElementById("options").innerHTML += ("</select>");
}
</script>
</head>
<body>
<div id="options">
<script type="text/javascript">
var counter=0;
more();
</script>
</div>
<div id="more">
<button onClick='more()' style='color:blue;font-size:11px;font-family:verdana; cursor:pointer;'>more</button>
</div>
</body>
</html>