function getContactList(_RegionID, _CountryID) {
  getContactListURL("?RegionID="+_RegionID+"&CountryID="+_CountryID);
}
function getContactListURL(href) {
    $("#contactList").animate({opacity:"0.6"});
    $.ajax({
      url: href,
      type: "get",
      dataType: "html",
      success: function( XMLHttpRequest ) {
        $("#contactList").html( $(XMLHttpRequest).find("#contactList") );
        $("#navi_local").hide().html( $(XMLHttpRequest).find("#navi_local") ).slideDown("normal");

        $("#contactList").animate({opacity:"1"});
      },
      error: function() {
      }
    });
}