function forward_to_document() 
{


var strjob_role=cbojob_role.value;
var strindustry=cboindustry.value;


	if ((strjob_role!="0") && (strindustry=="0") )
	{
		window.location=strjob_role;
	}

	else if ((strjob_role =="0") & (strindustry !="0") )
	{
		window.location=strindustry;
	}




cbojob_role.selectedIndex=0
cboindustry.selectedIndex=0


}


