I have this dropdownlist:
<select>
<option value="0">Selecione os capitulos</option>
@foreach (var item in ViewBag.Capitulos)
{
<option value="@item.IdCapitulo">@item.TituloCap</option>
}
</select>
How do I display the chosen value on the same page? I want the user when choosing the chapter, automatically load the user's choice into a textarea below. Is it possible to do this?