function autoFill(id, v){
				$(id).css({ color: "#212B23" }).attr({ value: v }).focus(function(){
					if($(this).val()==v){
						$(this).val("").css({ color: "#212B23" });
					}
				}).blur(function(){
					if($(this).val()==""){
						$(this).css({ color: "#212B23" }).val(v);
					}
				});
				
			}
