HTMLSelectElement selectE = (HTMLSelectElement)doc.getElementById( "test ");
IHTMLElementCollection options = selectE.children as IHTMLElementCollection;
foreach (HTMLOptionElementClass option in options)
{
MessageBox.Show(string.Format( "{0} = {1} ", option.text, option.value));
}