If you're given a form in a string format like:
<input type="hidden" id="thisID" value="Text Value" />
How can you get the value "Text Value"? Also with:
<select name="thisSelect" size="1">
<option value="one">One</option>
<option value="two" selected>Two</option
<option value="three">Three</option>
</select>
How can you get the value "two" or "Two"?