ng-repeat not working when include jQuery

I'm using zurb-foundation with AngularJS.

I have the following code:

<div class="row full" ng-controller="Movies">
    <div class="large-3 columns">    
        <form class="custom">
            <select id="customDropdown" class="small button dropdown secondary radius">
                <option DISABLED SELECTED>Movie selection</option>
                <option ng-repeat="movie in movie_list.movies">{{movie.name}}</option>
            </select>
        </form>
    </div>
</div>
function Movies($scope) {
    $scope.movie_list = { movies : [{name:'Movie1'}, {name:'Movie2'}]}; 
}

I have included the jQuery plugin, because it is needed for foundation. When jQuery is not included the code works fine, but when I include jQuery then nothing is shown in the dropbox, and all the text that should be there is at the bottom of the page.

Have a look at my Plnkr :- http://plnkr.co/edit/9w2jTg?p=preview

I'm using the Foundation select box with jQuery and AngularJS and it's working fine. Might be something to do with the order you script references are in. Hard to say without seeing your code.
Also, I did notice that when the first select option is disabled and has no empty value, the select box becomes blank and the only way to open it is to click on the little arrow, so:

this doesn't work correctly:

<option disabled>Please select...</option>

works fine:

<option value="" disabled>Please select...</option>