How Can I Make My GUI Text Appear Above My GUI.DrawTexture?

Hi, I Am Trying To Make My GUI Text Appear Above My Background That I Setup, But I Don’t Know How To. If You Need Anymore Information Please Just Ask.

Try this
http://docs.unity3d.com/Documentation/ScriptReference/GUI-depth.html

Here is how you do it:

GUI.DrawTexture(new Rect(40,40,98,100), texture);
GUI.Label(new Rect(68,72,80,20),"Text");