Есть скрипт создания куки. как написать скрипт для ее удаления через onclick?
function rewrite_quantity(obj,id){
var quantity = $(obj).val();
var price = $(obj).parent().parent().find('span').html();
var summ = parseInt(price)*parseInt(quantity);
$('#rezult_'+id).html(summ+" Грн");
document.cookie = "pid["+id+"]="+quantity+";path=/;expires='<b id="drop">3600</b>'";
}