function select_text(input_id){
			
	// Only select the text if it hasn't been clicked before
	if(!input_id.clickedBefore||input_id.clickedBefore==''){
		input_id.select();
		input_id.clickedBefore=true;
	}
	
}

