// JavaScript Document
window.onload = function(){
var wordinput = document.getElementById("key");
wordinput.onfocus = function(){
this.value = "";
this.style.color = "#333333"
}
wordinput.onblur = function(){
if(this.value == ""){
this.value = "Package standard";
this.style.color = "#333333"
}
}

}
