HTMLCollection col = selectElem.getOptions();
HTMLElement option;
HTMLElement firstOpt = (HTMLElement)col.item(0); // puede ser null
option = (HTMLElement)doc.createElement("option");
option.appendChild(doc.createTextNode(Integer.toString(col.getLength())));
selectElem.add(option, firstOpt);
option = (HTMLElement)doc.createElement("option");
option.appendChild(doc.createTextNode(Integer.toString(col.getLength())));
selectElem.add(option,null);