Angular: Empty Fiddle

http://angularjs.org/

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.1/angular.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
    <div ng-controller="MyCtrl">
      <select data-plugin-selectTwo 
              name="send_item_id" 
              id="send_item_id" 
              ng-model="itemSelected" 
              ng-change="getSendItem()" 
              class="form-control populate">
          <option ng-repeat="item in data" ng-value="item.value">
            @{{ item.text }}
          </option>
      </select>
    </div>

JavaScript

var myApp = angular.module('myApp', []);

    myApp.controller('MyCtrl', function($scope) {

      $scope.data = [{
        "text": "Bkash",
        "value": 1
      }, {
        "text": "Paypal",
        "value": 2
      }];

      $scope.itemSelected = $scope.data[0].value;

      $scope.getSendItem = function() {
        console.log($scope.itemSelected);
      }
    });