This select box is element x.
This page contains test cases for basic document properties.
The W3C way
var y = new Option('Test option W3C');
x.add(y,x.options[x.options.length]);
The Microsoft way
var y = new Option('Test option MS');
x.add(y,2);
x.remove(1)