Give style to Instantiate (GUIText) ?

I want to change the font size in void update of a instantiate object(GUITex), how I can do it? I can give style in instantiate Object?How?

When you instantiate the function always returns the instantiated object so you can do this:

GUIText text = (GUIText)Instantiate(params);
text.somevar = 5;