For any permutation, let $A,B,C,D$ be the number of $a$'s, $b$'s, $c$'s, and $d$'s that are in the permutation respectively. If you want a permutation that consists of picking $4$ of the $11$ elements, then we have that $A+B+C+D = 4$.
Say we construct a permutation by picking the amount of each letter starting at $a$ and ending at $d$. Notice that we can either pick $0$ or $1$ $a$'s. Afterwards, we can pick anywhere from $0$ to $2$ $b$'s. After that, we can pick anywhere from $0$ to $3$ $c$'s as long as we don't go over the limit of picking four elements. In other words, we can pick anywhere from $0$ to $\min(3,4-(A+B))$ $c$'s. Similarly, we can pick anywhere from $0$ to $\min(5, 4-(A+B+C))$ $d$'s.
Thus, we could express the number of permutations as:
$$\sum_{A=0}^1\sum_{B=0}^2\sum_{C=0}^{\min(3,4-(A+B))}\sum_{D=0}^{\min(5, 4-(A+B+C))} \frac{4!}{A!B!C!D!}.$$
I will say that this nested sum isn't really pretty by any means, so I'm sure both myself and the OP would like if anyone else can find a more elegant formula :)