function ChangeDealerCountry() {
  $("#dealer").hide();
  var c = $(".dealer select").val();
  $("#dealer").load("/dealers/ #dealer>*", { country : c }, function() { 
    $("#dealer").show(500);
    $("form.contact input[name=country]").val(c); 
  });
}

function InitDealers(url) {
  $("form.contact").submit(function() {
    /* load the result into the div */
    
    $("#side_content").hide(200);
    $.post("/" + url + "/submit/", $("form.contact").serializeArray(), function(data, textStatus) {
      $("#side_content").empty();
      $("#side_content").html($(data).find("#side_content").html()).show(500);
    });
    
    return false;
  });
}