function checkdetail(id)
{
	jQuery.ajax({
			url: "/checkdetail.php",
			type: "POST",
			dataType: "text",
			data: {id: id},
			success: function(data){
				//document.getElementById('price').value = data;
				//jQuery('price').text(data);
			},
			error: function(){
				alert("error");
			}
		});
}