});
        $.ajax({$(document).ready(function (e){
        $('#upload-button').click(function (e){
            e.preventDefault();
            $("#message").empty();
            $('#loading').show();
       // });
        $.ajax({
            url: 'UpdateCitymarket.php',
            type: "POST",
            data: new FormData(this),
            contentType: false,
            cache: false,
            processData: false,
            success: function(data)   // A function to be called if request succeeds
            {
                $('#loading').hide();
                console.log(data);
                $("#message").html(data);
            }
        });
    });