var selects = [
{ id: 1, value: "Anton" },
{ id: 2, value: "Dima" },
{ id: 3, value: "Borya" },
{ id: 4, value: "Carl" }
]
selects.sort(function( a, b ){
return a.value > b.value ? 1 : ( a.value < b.value ? -1 : 0 );
});
for( var idx in selects ) {
alert( selects[ idx ].value );
}