if(window.attachEvent)
    window.attachEvent("onload",setListeners);
	
function setListeners(){
    inputList = document.getElementsByTagName("INPUT");
    for(ia=0;ia<inputList.length;ia++)
        inputList[ia].attachEvent("onpropertychange",restoreStyles);
    selectList = document.getElementsByTagName("SELECT");
    for(ia=0;ia<selectList.length;ia++)
       selectList[ia].attachEvent("onpropertychange",restoreStyles);
}

function restoreStyles(){
    if(event.srcElement.style.backgroundColor != "")
        event.srcElement.style.backgroundColor = "";
}