The use of manual references is perfectly fine - recommended even. Only use DbRefs if they offer specific benefits - such as permitting automatic de-referencing (a mongo script or php code can automatically know that foo points at collection x, with id y [in database z]).
Different types is a bad design
However avoid type juggling.
Having what is effectively a foreign key in one collection, and it being a different type from that of the collection it's pointing at is a bad design. Type juggling is something to eliminate from development in general, not introduce.
Think about the database
Code like this ran on the db should work:
form = db.forms.findOne();
user = db.users.findOne({_id: form.user_id});
And it shouldn't matter what type the users collection _id field is. With the schema in the question this code becomes:
form = db.forms.findOne();
user = db.users.findOne({_id: new MongoId(form.user_id)});
In and of itself, that's not a huge difference, but it means you have to think/remember to convert these references and it becomes problematic if/when a collection is created which uses a different type - it introduces inconsistencies.
Consider the following:
> school = db.schools.insert({_id: 123, name: "my school"});
> userId = new ObjectId();
> db.users.insert({_id: userId, name: "Me"});
> db.forms.insert({user_id: userId, school_id: 123});
Let's say that the school id is a unique code. if there's no possibility it could change - it's appropriate and a good idea to use as the _id field. Now, the school id and the user id are different types:
> db.forms.findOne();
{
"_id" : ObjectId("508940370392baf87e68e31d"),
"user_id" : ObjectId("5089401c0392baf87e68e31b"),
"school_id" : 123
}
If they are stored as-is, it's still possible to be completely ignorant of these different types in queries:
form = db.forms.findOne();
school = db.schools.findOne({_id: form.school_id});
user = db.users.findOne({_id: form.user_id});
If different types are used that means that it becomes necessary to think "with this collection I need to convert the string to an ObjectId, but with this one I must not".
That's a problem that could have been avoided, but instead - it was introduced.