Jquery jsonp (firebug)returns missing ; before statement

Jquery jsonp (firebug)returns missing ; before statement

Here's my code:


$( document ).ready( function(){

    $('#get_metars').click( function(){     
        //var icao = $('#icaos').val();
           var icao = 'KJFK';
           var url = 'http://weather.noaa.gov/pub/data/observations/metar/stations/'+icao+'.TXT';
               
          $.ajax({
            type: 'GET',
            url:  url,
               dataType: 'jsonp',
               jsonp: 'callback',
               success: function(data) {                       
                  
                   $('#wxview').html(data);                        
               }
                
        });
    });   
});

Can i get some help on this?
Thanks