angularjs - select multiple

http://angularjs.org/

HTML

<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<script src="https://raw.github.com/ivaynberg/select2/master/select2.js"></script>
<link rel="stylesheet" href="https://raw.github.com/ivaynberg/select2/master/select2.css">
    <div ng-controller="MyCtrl">
      <select id="myselection" ng-model="selectedColors">
        <option value="1" >Red</option>
         <option value="2">Blue</option>
         <option value="3" selected="selected">Green</option>
      </select>

      <div>
        Selected Colors: {{selectedColors }}
      </div>

JavaScript

var myApp = angular.module('myApp', [])
.controller('MyCtrl', ['$scope', function ($scope) {
   $scope.selectedColors = 2;
}]);;