function killInputs(defaultInputValue, obj){
  if(obj.value == defaultInputValue){
    obj.value = '';
  }
}

