// JavaScript Document
function posForm(x)
{

if (x == false) {
document.options.industry.disabled = true;
document.options.industry.selectedIndex = 0;
}
else {
document.options.industry.disabled = false;
}
}