// Map Select Boxes

$(document).ready(function() {
  $('.country_list_select').change(function() {
		var country_id = $(this).val();
		if (country_id != 0) {
			document.location = 'country_profile.cfm?id=' + country_id;
		}
    return true;
  });
});