﻿
function resetFormFieldBackground() {
    inputList = document.getElementsByTagName("input");

    for (i = 0; i < inputList.length; i++) {
        if (inputList[i].className == "resetBG") {
            inputList[i].style.backgroundColor = "#7E6C57";
        }
    }

    selectList = document.getElementsByTagName("select");

    for (i = 0; i < selectList.length; i++) {
        if (inputList[i].className == "resetBG") {
            selectList[i].style.backgroundColor = "#7E6C57";
        }
    }
}


