jQuery UI Datepickerのカレンダーに年月選択ボックスを入れる

デフォルトだと以下のように指定することでカレンダーのみが表示されます。

<script type="text/javascript">
    jQuery(document).ready(function(){
      jQuery('.date-input').datepicker ();
    });
</script>

以下のようにオプションを設定することでカレンダーに年月選択ボックスを付けられます。

<script type="text/javascript">
    jQuery(document).ready(function(){
      jQuery('.date-input').datepicker ({
        dateFormat: 'yy-mm-dd',
        changeMonth: true,//月の選択ボックス
        changeYear: true//年の選択ボックス
      });
    });
</script>

他のオプションなどはこちらがわかりやすいです。
Datepicker | jQuery UI 1.10 日本語リファレンス | js STUDIO