node.js requires "select" value in the form

<select name="language" id="chooselang">
<option value="nl">NL</option>
<option value="en">EN</option>
</select>

if I use req.body.language,it only returns the value attribute. How can I get the value between the tag(like NL,EN)?