function selectPickupPoint(id, text)
{
  tb_remove();
  $("#pickup_point_id").val(id);
  $("#pickup-location").text(text);
  getprice();
}
function selectDropoffPoint(id, text)
{
  tb_remove();
  $("#dropoff_point_id").val(id);
  $("#dropoff-location").text(text);
  getprice();
}

function getprice() {
  var ppi = $("#pickup_point_id").val();
  var dpi = $("#dropoff_point_id").val();
  
  if(ppi.toString().length > 0 && dpi.toString().length > 0)
  {
    $("#quote-home").html("<img src=\"images/loadingAnimation.gif\" />");
    var priceurl = "home-getprice.php?pickup_point_id=" + ppi + "&dropoff_point_id=" + dpi;
    $.ajax({
      url: priceurl,
      success: function(data) {
        $("#quote-home").html(data);
      }
    });
    $("#quote-home").fadeIn("slow");
  }
}
