// JavaScript Functions
function check(mess) {
	if (!mess) {
		mess="Do you really want to delete this record?";
	}
	if (confirm(mess)) {
		return true;
	} else {
		return false;
	}
}

function changecar(id) {
	$("#car").attr("src","img/vehicles/"+id+".jpg");
	$('#price').text(aprice[id]);
	$('#descr').text(adescr[id]);
}

function calculate(v) {
	var vprice = $('#price').html();
	var total = v * vprice;
	$('#total').text(total);
	document.getElementById('amount').value=total;
}