<select class="question">
<option value="">Select one</option>
<option value="1">Cool</option>
<option value="2">Good</option>
</select>
He tried to give the code did not work
WebBrowser1.Document.All("question").SetAttribute("Value", "2")
the best method to access an element is by using either its name or its id. you can set the name or id of the select and then try to access it.
<body name="bdy">
<select name="question">
<option value="">Select one</option>
<option value="1">Cool</option>
<option value="2">Good</option>
</select>
webbrowser1.document.bdy.question.SetAttribute("Value","2");
or you can also set its id and then try...
<select id="question">
<option value="">Select one</option>
<option value="1">Cool</option>
<option value="2">Good</option>
</select>
webbrowser1.document.getElementById("question").SetAttribute("Value","2");
hope this works. :)