I couldn't select the value from the drop-down. Tried with the below mentioned
Inspect body/html body in attached image:
Tried with this
Select selectBenefeciary = new Select(driver.findElement
(By.xpath("//*[@id=\"beneficiary\"]")));
selectBenefeciary.selectByVisibleText("FROBEL ACADEMY");
Select selectBenefeciary = new Select(driver.findElement
(By.xpath("//*[@id=\"beneficiary\"]")));
selectBenefeciary.selectByIndex(1);

There could be more than one reasons why selenium is not able to handle the dropdown. One of the reason could be that the script executes faster than the loading of the web page. Try using Selenium's Waits to effectively locate the element.
Try using
Explicit Waitssomething like below:Imports: