Any idea why this query string comes out like the one below?
var requestData = $('#txtCity').val() + ',' + $('#txtCountry').val() + '&APPID=e142d6277e3108bf30a12ab09c98ce6f';
http://api.openweathermap.org/data/2.5/weather?q=London%2CUK%26APPID%3De142d6277e3108bf30a12ab09c98ce6f
where txtCity is London and txtCountry is UK?