Если вы используете Razor для вашего движка, замените следующее
<select id="box1View" multiple="multiple" style="height:100px;width:250px;">
<option value="501649">Item1</option>
<option value="501497">Item2</option>
<option value="501053">Item3</option>
<option value="500001">Item4</option>
<option value="501227">Item5</option>
<option value="501610">Item6</option>
</select>
с:
@Html.ListBox("box1View", new SelectList(Model.UnAssignedStates, "Id", "ShortDescription"), new {style = "height:100px;width:250px;"})
и заменить
<select id="box2View" multiple="multiple" style="height:100px;width:250px;"></select>
с:
@Html.ListBox("box2View", new SelectList(Model.AssignedStates, "Id", "ShortDescription"), new {style = "height:100px;width:250px;"})