job scheduler
I need to schedule the following job 
	
-------------------------------------------------------------------
	
declare
	
a varchar2(10);
	
begin
	
dbms_job.submit(:x,'post_phr_transactions.process_phr_posting;',trunc(sysdate)+11/24,'add_months(trunc(sysdate),1)+11/24');
	
end;
	
-------------------------------------------------------------------
	
Please help me how to schedule this job in oracle 10g on solaris 10 
With Kind Regards
	
Kamal
