$(document).ready(function(){
 	// clear value if it's a "-"
	$('input.text').click(function(){
		if ($(this).val() == ' - ')
		{
			$(this).val('');
		}
	});
});