function inputValue(initialValue, thisid){
    // see if the current input is the set dummy text, if so
    // delete it, if it is a searched string, leave it there!
    var tb = document.getElementById(thisid.id).value;
    if(tb == initialValue){
        document.getElementById(thisid.id).value = '';
    }
}
