onload = function () {
document.forms[0].bottle.disabled = true;
}
onload = function () {
document.forms[0].cup.disabled = true;
}
onload = function () {
document.forms[0].mug.disabled = true;
}
onload = function () {
document.forms[0].pen.disabled = true;
}
onload = function () {
document.forms[0].flipflops.disabled = true;
}

function Disablebottle() {
frm=document.forms[0]
if(frm.nobottles.checked) {
	frm.bottlesquanity.disabled=true;
	frm.bottlesquanity.value="Enter Quanity"
		}else {frm.bottlesquanity.disabled=false;
		frm.bottlesquanity.value="1"
		}

}

function Disablemugs() {
frm=document.forms[0]
if(frm.nomugs.checked) {
	frm.mugsquanity.disabled=true;
	frm.mugsquanity.value="Enter Quanity"
		}else {frm.mugsquanity.disabled=false;
		frm.mugsquanity.value="1"
		}

}
function Disableflipflops() {
frm=document.forms[0]
if(frm.noflipflops.checked) {
	frm.flipflopsquanity.disabled=true;
	frm.flipflopsquanity.value="Enter Quanity"
		}else {frm.flipflopsquanity.disabled=false;
		frm.flipflopsquanity.value="1"
		}

}
function Disablecups() {
frm=document.forms[0]
if(frm.nocups.checked) {
	frm.cupsquanity.disabled=true;
	frm.cupsquanity.value="Enter Quanity"
		}else {frm.cupsquanity.disabled=false;
		frm.cupsquanity.value="1"
		}

}
function Disablepens() {
frm=document.forms[0]
if(frm.nopens.checked) {
	frm.pensquanity.disabled=true;
	frm.pensquanity.value="Enter Quanity"
		}else {frm.pensquanity.disabled=false;
		frm.pensquanity.value="1"
		}

}