I am given a 3-component vector $\vec v$. There are obviously an infinite number of orthogonal vectors to $\vec v$. I need to find the specific orthogonal vector, lets call it $\vec{x}$, in the plane defined by $\vec v$ and the positive z-unit vector.
Is there some sort of standardized equation to find $\vec x$?

Without loss of generality (i.e., up to overall scaling), you're looking for a vector of the form $$ x = cv + e_{3} = cv + (0, 0, 1) $$ orthogonal to $v$ for some (unknown) scalar $c$. Taking the dot product with $v$ gives $0 = c(v \cdot v) + v \cdot e_{3}$, or $$ c = -\frac{v \cdot e_{3}}{v \cdot v}. $$ (This presumes $v \neq 0$, but if $v = 0$ the vector $x = e_{3}$ suits your needs.)