/**
 * Clears text from input.
 *
 * @var string input - name of input to clear
 * @var string text  - text value to clear 
 */
 
clearText = function(input, text) {
	if (input.value == text) {
	input.value = "";
	}
}
