function blChange() {
	bl=id('buylease');
	if (bl) {
		p1=id('pricebuy');
		p2=id('pricelease');
		p3=id('pricerange');
		p1.className=(bl.value=="Purchase") ? '' : 'hide';
		p2.className=(bl.value=="Lease")  ? '' : 'hide';
		p3.className=((p1.className==p2.className)) ? '' : 'hide';
		p1.selectedIndex=p1def;
		p2.selectedIndex=p2def;
		p3.selectedIndex=p3def;
	}
	return true;
}
var p1def=id('pricebuy').selectedIndex;
var p2def=id('pricelease').selectedIndex;
var p3def=id('pricerange').selectedIndex;
blChange();

