Add the target and selector for event: UIControlEventValueChanged and then simply call the javascript function from the selector.
//set the selector for datePicker event
[datePicker addTarget:self action:@selector(dateChanged) forControlEvents:UIControlEventValueChanged];
.......
.......
-(IBAction)dateChanged
{
.......
.......
//call the javascript function text=>data to show
NSString *string = [NSMutableString stringWithFormat:@"showTextFromNative( %@)", text];
[self.webviewOutlet stringByEvaluatingJavaScriptFromString:string];
}
//javascript function in your html
function showTextFromNative(text)
{
....
....///Do what ever you want to show in webview
....
}