﻿
$(document).ready(function () {
    // get your select element and listen for a change event on it
    $('#changeCountry').change(function () {
        // set the window's location property to the value of the option the user has selected
        window.location = $(this).val();
    });

    //$('.contourField').contourhint();
});
