$(function() {
    $('.todays-weather-change-link').click(function (e) {
        $('.todays-weather-change-link').css('display', 'none');
        $('.todays-weather-select-city').css('display', 'inline');
        return false;
    });

    $('.todays-weather-city-selector').change(function()  {
        $('.todays-weather-block-wrapper').load('/todaysweather/block/?l='+this.options[this.selectedIndex].value); 
        $('.todays-weather-select-city').css('display', 'none');
        $('.todays-weather-change-link').css('display', 'inline');
        return false;
    });
 
});

