@foreach (var item in ViewBag.Articles){
<div class="block" @ViewHelper.Edit(item)>
@item.Province <h4 class="title"><a href='@Url.FrontUrl().PageUrl("Articles/detail", new { UserKey = item.UserKey})'@ViewHelper.Edit(item,"Title") >@item.Title</a></h4>
<span class="date">@ViewHelper.DateTimeToString(item.UtcCreationDate,"yyyy-MM-dd")</span>
<p @ViewHelper.Edit(item,"Summary")>@Html.Raw(item.Summary)</p>
<a class="comment" href="@Url.FrontUrl().PageUrl("Articles/detail", new { UserKey = item.UserKey})#comments">@(((Kooboo.CMS.Content.Models.TextContent)item).Children("Comment").Count()) Comments</a>
</div>
}

I want instead of 1, 2 as the corresponding picture is China, Spain (Text of the DropDownList, not the value of the DropDownList) ?