$.ajax({
url: "../app/source/addPassenger",
data: {
passenger_resource: JSON.stringify(passenger_resource),
},
dataType: "json",
type: "POST",
success: function (data) {
alert("")
window.location.href = "select.html"
},
error: function () {
alert("");
}
})