document.getElementById("discount").style.display="none";
var show=0;
function discount(){
if (show==0){
document.getElementById("discount").style.display="block";
show=1;
} else{
document.getElementById("discount").style.display="none";
show=0;
}
}