function fn_SelectedValue(selectId)
{
  theSelect = document.getElementById(selectId);
  selectedValue = theSelect.option[theSelect.selectedIndex].value;
  if(!selectedValue || selectedValue==null)
  {
    selectedValue = 0;
  }
  return selectedValue;
}