option
elements
interface HTMLFormControlsCollection {
readonly attribute unsigned long length;
HTMLOptionElement item(in unsigned long index);
Object namedItem(in DOMString name);
};
in Java:
public interface HTMLFormControlsCollection {
public int getLength();
public HTMLOptionElement item(int index);
public Object namedItem(String name);
};