/*
Conditions
Syntax:
	conds.push(Array('element name','element value','element name', boolean));

Example:
To make the user specify income ONLY IF he's a man the following condition would work:
conds.push(Array('gender','man','income', true));
You wouldn't have to set the 'req' class to the income field if you use this rule.
*/
conds.push(Array('Currentlyworking','No','CurrentJobTitle', false));
conds.push(Array('Currentlyworking','No','WorkingCountry', false));
conds.push(Array('Currentlyworking','No','TotalYearExp', false));
conds.push(Array('Intereviewedbefore','No','Intereviewedbefore', false));
conds.push(Array('Intereviewedbefore','No','posiaramco', false));
conds.push(Array('LHRFilter','SToASC','WhyNotLHR', false));
conds.push(Array('LHRFilter','SToASC','uploadfile', true));
conds.push(Array('FilterRecep','Frontdesk Drop','WhyNotLHRRecep', true));
conds.push(Array('GeneralInterview','Refer to','Refer', true));
conds.push(Array('GeneralInterview','No further Interest','DropReason', true));


