searching different multiple directories

Suppose I have 5 different directories in some path .Is it possible to search 5 different directories using find command in one single command line.

I mean something like this:-
find path -type d -name dirname1 dirname2 ..........

pls help

You can supply multiple paths to GNU find and Solaris find (SunOS 5.10)
eg.

ls -R test/
test/:
dir1  dir2  dir3

test/dir1:
test.txt

test/dir2:
test.txt

test/dir3:
test.txt
~/ $ find test/dir1 test/dir2 -name \*.txt
test/dir1/test.txt
test/dir2/test.txt
find path \( -name "dirname1" -o -name "dirname2" -o -name "dirname3" \) -type d