function InputBgSet(item,item_action) {

  if (item_action == 1) {
      item.style.color = '#000000';
      item.style.backgroundColor = '#F9F9BF';
  } else if (item_action == 2) {
      item.style.color = '#1958BF';
      item.style.backgroundColor = '#FFFFFF';
  }
}