@using(Html.BeginForm("SaveState", "Place", FormMethod.Post)) {
@Html.TextBoxFor(x => x.Name, new { @class="form-control" })
@Html.DropDownListFor(x => x.Country.Id, GarageBandz.Web.Helpers.Metadata.Countries(), "Seleziona...", new { @class = "form-control" })
@Html.HiddenFor(x => x.Country.Id)
@Html.HiddenFor(x => x.Id)
}