Angular: Empty Fiddle
http://angularjs.org/
HTML
<div ng-app="myApp" ng-controller="Controller">
<div class="col-lg-3">
<select ng-model="g.name" class="form-control uniformselect" id="owner_id" style="border-radius: 4px;" ng-value="{g.name}" ng-options="g.name for g in states">
</select>
selcted is {{g.name}}
</div>
JavaScript
var myApp = angular.module('myApp', []);
myApp.controller('Controller',function ($scope) {
$scope.states = [{
id: 1,
name: 'ABC11'
}, {
id: 2,
name: 'LMN2222222222222222'
}, {
id: 3,
name: 'OPQ33333333333333333'
}, {
id: 4,
name: 'RST333333333333'
}, {
id: 5,
name: 'UVW222222222222'
}];
});