onchange event on the select have a function something like this
onchange="fnSwitchDiv(this);"
functionSwitchDiv(_oSlc)
{
var _optionValue = _oSlc.options[_oSlc.selectedIndex].value;
//Some code here to hide the div that is currently displayed, if you only have 4 then just turn them all off, otherwise you need to remember what you last selected.
switch(_optionValue)
{
case 'Clean':
document.getElemenyById('Id of elmenet toshow when clean').style.display='block';
break;
//repeat for each case
}
}
Something like that anyway