function InputBgSet(item,item_action) {

  if (item_action == 1) {
      item.style.color = '#373737';
      item.style.backgroundColor = '#FFFFEC';
  } else if (item_action == 2) {
      item.style.color = '#0f2183';
      item.style.backgroundColor = '#FFFFFF';
  }
}