@model HelloWorldMvcApp.SampleViewModel
new SelectListItem {Text = "Não", Value = "0"},
new SelectListItem {Text = "Presencial", Value = "1"},
new SelectListItem {Text = "Coletivo", Value = "2"},
new SelectListItem {Text = "Recusado", Value = "3"},
new SelectListItem {Text = "Remoto", Value = "4"}
<!-- template from http://getbootstrap.com/getting-started -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
.field-validation-error {
<div class="container" id="tbValidacao">
<div class="col-md-6 col-md-offset-3">
@using (Html.BeginForm())
@Html.DropDownList("DropManter", new SelectList(listItems, "Value", "Text"))
@Html.DropDownList("DropManter", new SelectList(listItems, "Value", "Text"))
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="//ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js"></script>
<script src="//ajax.aspnetcdn.com/ajax/mvc/4.0/jquery.validate.unobtrusive.min.js"></script>
$("select[name='DropManter']").change(function(){
var valor = $(this).val();
var texto = $('option:selected', $(this)).text();
alert(valor + ': ' + texto );