function removeText(obj) {
	obj.value = '';
}

function checkValue(obj, str) {
    if (obj.value == '') {
    	obj.value = str;
    }
}
