You can put Jquery code into AngularJS controller like
$scope.shipchange = function (SelectedShipId ) {
alert('ShipId =' + SelectedShipId );
}
$("#Ships").change(function () {
SelectedShipId = $("#Ships").val();
$scope.shipchange(SelectedShipId );
})