function hideHTC(){}
function showHTC(id){}
function hidePassenger(){}
function showPassenger(id){}
function hideAccident(){}
function showAccident(id){}
function hideMotor(){}
function showMotor(id){}
function hideObject(){}
function showObject(id){}
function changecity(strValue) {
      if(strValue == 'Bloemfontein') {
            green  = 250000;
            yellow = 300000;
            orange = 400000;
      }
      else if(strValue == 'CapeTown') {
            green  = 250000;
            yellow = 300000;
            orange = 400000;
      }
      else if(strValue == 'Durban') {
            green  = 250000;
            yellow = 300000;
            orange = 400000;
      }
      else if(strValue == 'Johannesburg') {
            green  = 250000;
            yellow = 300000;
            orange = 400000;
      }
      else if(strValue == 'PortElizabeth') {
            green  = 80000;
            yellow = 100000;
            orange = 150000;
      }
      else if(strValue == 'Pretoria') {
            green  = 250000;
            yellow = 300000;
            orange = 400000;
      }
      else if(strValue == 'Nelspruit') {
            green  = 80000;
            yellow = 100000;
            orange = 150000;
      }
      else if(strValue == 'Polokwane') {
            green  = 80000;
            yellow = 100000;
            orange = 150000;
      }
      else if(strValue == 'Rustenberg') {
            green  = 80000;
            yellow = 100000;
            orange = 150000;
      }
      else {
            green  = 250000;
            yellow = 300000;
            orange = 400000;
      }
      document.getElementById('txtboxgreen').value=green;
      document.getElementById('txtboxyellow').value=yellow;
      document.getElementById('txtboxorange').value=orange;
}
